|
|
Re: BUGZILLA report all bugs here![message #328764]
|
Tue, 03 December 2013 07:09
|
|
Buggler |
|
Messages:211
Registered:November 2009 |
|
|
Yes, I noticed the problem when submitting patch. Have asked Rowa to help me have a look as I thought it was a character encoding issue.
I reverted 'Mercs Files.cpp' to r4xxx version and did a test patch. Same result, corruption.
Can someone help me verify whether creating a patch against r6673 or older 'Mercs Files.cpp' will produce corrupted lines for 'Mercs Files.cpp' portion?
If no corruption, that means my harddisk is dying.
Edit:
Found the problem. It's in 2008 r2199 patch.
There's an illegal character in line 989 which causes the patching corruption.
Edit2:
Patch submitted
[Updated on: Tue, 03 December 2013 11:27] by Moderator Report message to a moderator
|
Sergeant 1st Class
|
|
|
|
|
|
|
|
|
|
|
|
Re: BUGZILLA report all bugs here![message #329281]
|
Thu, 26 December 2013 13:27
|
|
sionus |
Messages:3
Registered:January 2010 |
|
|
Little bug/not implemented feature in latest version:
Scenarion:
Start/load game
Open save game menu
Save game to slot on any page except first.
Close save game menu
Open save game menu
Actualy: openned first page, none saved game slot selected.
Expected: openned page with last save game, slot with last saved game selected.
I make patch for this, but I don`t know c++, please check it.
It looks like work but maybe it destroy something.
On future, where patches should be sended? Looks like post it on forum is not good idea.
Index: Build/SaveLoadScreen.cpp
===================================================================
--- Build/SaveLoadScreen.cpp (revision 6708)
+++ Build/SaveLoadScreen.cpp (working copy)
@@ -562,7 +562,7 @@
//if it is not the Quick Save slot, and we are loading
if( !gfSaveGame || gfSaveGame && gGameSettings.bLastSavedGameSlot != 0 )
{
- gbSelectedSaveLocation = gGameSettings.bLastSavedGameSlot;
+ gbSelectedSaveLocation = gGameSettings.bLastSavedGameSlot%NUM_SLOT;
gbSaveGameSelectedLocation[ gbSelectedSaveLocation ] = SLG_SELECTED_SLOT_GRAPHICS_NUMBER;
//load the save gamed header string
@@ -848,6 +848,22 @@
gfGettingNameFromSaveLoadScreen = FALSE;
+ //Go to page with last saved game
+ if ( gGameSettings.bLastSavedGameSlot >= NUM_SLOT)
+ {
+ PAGE_SLOT = gGameSettings.bLastSavedGameSlot/NUM_SLOT;
+ VAL_SLOT_START = (PAGE_SLOT * NUM_SLOT);
+
+ if ( PAGE_SLOT > 0 )
+ EnableButton( guiPrevButton );
+
+ if (PAGE_SLOT == MAX_PAGE_SLOT || PAGE_SLOT > MAX_PAGE_SLOT )
+ DisableButton( guiNextButton );
+
+ DestroySaveLoadTextInputBoxes();
+ NewEnterSaveLoadScreen();
+ }
+
return( TRUE );
}
[Updated on: Thu, 26 December 2013 13:31] by Moderator Report message to a moderator
|
Civilian
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: BUGZILLA report all bugs here![message #329606]
|
Mon, 06 January 2014 23:35
|
|
hrvg |
|
Messages:158
Registered:August 2012 Location: France |
|
|
Hi Flugente,
I play with SCI_Unstable_Revision_6708_on_GameDir_1901.7z(English version.)
Thanks.
Regards.
[Updated on: Mon, 06 January 2014 23:36] by Moderator Report message to a moderator
|
Staff Sergeant
|
|
|
|
Re: BUGZILLA report all bugs here![message #329608]
|
Mon, 06 January 2014 23:44
|
|
Flugente |
|
Messages:3507
Registered:April 2009 Location: Germany |
|
|
@wolf00: I don't look for bugs in savegames with mods I don't have, as installing them takes too much time. And I don't see any random items in that picture, so what is the error? (I don't understand what the problem is).
@hrvg: It seems you use a very, very old version of that map that is no longer supported (since several years it seems). Use a newer one.
[Updated on: Mon, 06 January 2014 23:47] by Moderator Report message to a moderator
|
|
|
|
|
|
|
|
|
|
Re: BUGZILLA report all bugs here![message #329617]
|
Tue, 07 January 2014 01:17
|
|
hrvg |
|
Messages:158
Registered:August 2012 Location: France |
|
|
Quote:It seems you use a very, very old version of that map that is no longer supported (since several years it seems). Use a newer one.
@Flugente: I installed English version.
I unzipped:
SCI_Unstable_Revision_6722_on_GameDir_1905.7z
It's good (for English version only.)
Thank you for your help.
Regards.
[Updated on: Tue, 07 January 2014 01:18] by Moderator Report message to a moderator
|
Staff Sergeant
|
|
|