diff options
author | Hubert Maier | 2016-04-29 17:13:44 +0300 |
---|---|---|
committer | Hubert Maier | 2016-04-29 17:13:44 +0300 |
commit | 0f11864e8ad23de6ab62397d75e0e9373270a703 (patch) | |
tree | 280b89067d6f0c47a20f774585787c93137d61fb | |
parent | 4bad45cfd6fea3a5756d9b9c14bcf4b99d82d0b0 (diff) | |
download | scummvm-rg350-0f11864e8ad23de6ab62397d75e0e9373270a703.tar.gz scummvm-rg350-0f11864e8ad23de6ab62397d75e0e9373270a703.tar.bz2 scummvm-rg350-0f11864e8ad23de6ab62397d75e0e9373270a703.zip |
Fix identation again
I should stop c&p'ing
-rw-r--r-- | backends/platform/sdl/amigaos/amigaos-main.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/backends/platform/sdl/amigaos/amigaos-main.cpp b/backends/platform/sdl/amigaos/amigaos-main.cpp index 1f58aaa830..291c4c76d4 100644 --- a/backends/platform/sdl/amigaos/amigaos-main.cpp +++ b/backends/platform/sdl/amigaos/amigaos-main.cpp @@ -49,15 +49,15 @@ int main(int argc, char *argv[]) { sizeof(progpath), DN_FULLPATH)) { - // Stop any "Insert volume..." type requesters - oldwin = IDOS->SetProcWindow((APTR)-1); + // Stop any "Insert volume..." type requesters + oldwin = IDOS->SetProcWindow((APTR)-1); - // Finally, set the variable to the path the executable was run from - IDOS->AddPart( apppath, appname, 1024); - IDOS->SetVar( apppath, progpath, -1, GVF_GLOBAL_ONLY|GVF_SAVE_VAR ); + // Finally, set the variable to the path the executable was run from + IDOS->AddPart( apppath, appname, 1024); + IDOS->SetVar( apppath, progpath, -1, GVF_GLOBAL_ONLY|GVF_SAVE_VAR ); - // Turn system requesters back on - IDOS->SetProcWindow( oldwin ); + // Turn system requesters back on + IDOS->SetProcWindow( oldwin ); } } |