diff options
| author | Fuwn <[email protected]> | 2021-08-24 17:29:32 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-08-24 17:29:32 +0000 |
| commit | 20e41c21da8d3a2a92d53e018437eb92b4c7f9cd (patch) | |
| tree | 6768d468365e0f27697605057ed204d47ca11339 | |
| parent | build(soyuz): stricter compiling (diff) | |
| download | soyuz-20e41c21da8d3a2a92d53e018437eb92b4c7f9cd.tar.xz soyuz-20e41c21da8d3a2a92d53e018437eb92b4c7f9cd.zip | |
fix(soyuz): unused params
| -rw-r--r-- | soyuz/soyuz.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soyuz/soyuz.cc b/soyuz/soyuz.cc index e6afbce..828e9f6 100644 --- a/soyuz/soyuz.cc +++ b/soyuz/soyuz.cc @@ -19,7 +19,7 @@ extern TCHAR tip[64]; extern char class_name[]; extern std::vector<std::string> logs; -auto WinMain(HINSTANCE instance, HINSTANCE previous, LPSTR argument, int show) -> int { // WINAPI +auto WinMain(HINSTANCE instance, HINSTANCE, LPSTR, int show) -> int { // WINAPI soyuz::init_log_file(); MSG messages; |