File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
//
2
2
// ZEPTO-8 — Fantasy console emulator
3
3
//
4
- // Copyright © 2016—2017 Sam Hocevar <sam@hocevar.net>
4
+ // Copyright © 2016—2019 Sam Hocevar <sam@hocevar.net>
5
5
//
6
6
// This program is free software. It comes without any warranty, to
7
7
// the extent permitted by applicable law. You can redistribute it
@@ -25,12 +25,12 @@ struct fix32
25
25
26
26
/* Convert from/to double */
27
27
inline fix32 (double d)
28
- : m_bits((int32_t )std::round(std::ldexp(d, 16 ) ))
28
+ : m_bits((int32_t )std::round(d * 65536.0 ))
29
29
{}
30
30
31
31
inline operator double () const
32
32
{
33
- return std::ldexp (( double )m_bits, - 16 );
33
+ return ( double )m_bits * ( 1.0 / 65536.0 );
34
34
}
35
35
36
36
/* Conversions up to int16_t are allowed */
@@ -66,6 +66,8 @@ struct fix32
66
66
inline operator int64_t () const { return m_bits >> 16 ; }
67
67
inline operator uint64_t () const { return m_bits >> 16 ; }
68
68
69
+ /* Additional casts for long and unsigned long on architectures where
70
+ * these are not the same types as their cstdint equivalents. */
69
71
template <typename T,
70
72
typename std::enable_if<(std::is_same<T, long >::value ||
71
73
std::is_same<T, unsigned long >::value) &&
You can’t perform that action at this time.
0 commit comments