ソースを参照

Merge pull request #2490 from lioncash/float

ipc_helpers: Amend floating-point type in Pop<double> specialization
Hexagon12 7 年 前
コミット
edf8c0a545
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/core/hle/ipc_helpers.h

+ 1 - 1
src/core/hle/ipc_helpers.h

@@ -438,7 +438,7 @@ inline float RequestParser::Pop() {
 template <>
 template <>
 inline double RequestParser::Pop() {
 inline double RequestParser::Pop() {
     const u64 value = Pop<u64>();
     const u64 value = Pop<u64>();
-    float real;
+    double real;
     std::memcpy(&real, &value, sizeof(real));
     std::memcpy(&real, &value, sizeof(real));
     return real;
     return real;
 }
 }