diff options
| author | GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> | 2022-08-15 04:57:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-14 22:57:24 -0400 |
| commit | 68e7f2e6c16e4b5206e5e1594ec598109bd5a314 (patch) | |
| tree | 3bf9031f3c8a7559373f9dbf4be2ffe3973d7db9 /StormLib/src/FileStream.cpp | |
| parent | b989ef4f7f23acb482ccfc93675c1807b85c4ac0 (diff) | |
Wii U support (#1097)
* Wii U support
* [WiiU] Combined Dockerfile
* [WiiU] Combined Dockerfile
* [WiiU] Combined Dockerfile
* Add Jenkins support
* wiiu: fix scissor clamp
* wiiu: improve button remapping
* wiiu: fix scaling issues
* Update Dockerfile after merge
* Pull assets before build
* Only stop container once
* Adjust logging sinks
* wiiu: Change button mapping to match PC version
* wiiu: Implement controller changes
* wiiu: Update BUILDING.md
Co-authored-by: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com>
Co-authored-by: David Chavez <david@dcvz.io>
Diffstat (limited to 'StormLib/src/FileStream.cpp')
| -rw-r--r-- | StormLib/src/FileStream.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/StormLib/src/FileStream.cpp b/StormLib/src/FileStream.cpp index da1d0438d..323a91f13 100644 --- a/StormLib/src/FileStream.cpp +++ b/StormLib/src/FileStream.cpp @@ -34,7 +34,12 @@ // Local functions - platform-specific functions #ifndef STORMLIB_WINDOWS + +#ifndef STORMLIB_WIIU // WIIU doesn't support thread_local static thread_local DWORD dwLastError = ERROR_SUCCESS; +#else +static DWORD dwLastError = ERROR_SUCCESS; +#endif DWORD GetLastError() { |
