diff options
author | Travis Howell | 2009-07-19 14:03:35 +0000 |
---|---|---|
committer | Travis Howell | 2009-07-19 14:03:35 +0000 |
commit | 5b16cab6191093c1f078a719113cb3f2eae3b229 (patch) | |
tree | 5fe07e687e09d8cbf0b5939c55518c1c80d0179e | |
parent | 6e5063aed210984e0f6bdebcb5be2d8b2fc2d69a (diff) | |
download | scummvm-rg350-5b16cab6191093c1f078a719113cb3f2eae3b229.tar.gz scummvm-rg350-5b16cab6191093c1f078a719113cb3f2eae3b229.tar.bz2 scummvm-rg350-5b16cab6191093c1f078a719113cb3f2eae3b229.zip |
Change generic save game name.
svn-id: r42614
-rw-r--r-- | engines/agos/script_pn.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/script_pn.cpp b/engines/agos/script_pn.cpp index f033a65669..e8b72fc50c 100644 --- a/engines/agos/script_pn.cpp +++ b/engines/agos/script_pn.cpp @@ -386,7 +386,7 @@ void AGOSEngine_PN::opn_opcode31() { strcpy(bf, genSaveName(slot)); break; case 1: - strcpy(bf, "test.sav"); + strcpy(bf, "pn.sav"); break; case 2: // NOTE: Is this case ever used? @@ -426,7 +426,7 @@ void AGOSEngine_PN::opn_opcode32() { strcpy(bf, genSaveName(curSlot)); break; case 1: - strcpy(bf, "test.sav"); + strcpy(bf, "pn.sav"); break; case 2: // NOTE: Is this case ever used? |