mirror of
https://github.com/1dot13/source.git
synced 2026-07-29 13:52:17 +02:00
- Fix: face gear was not shown for non-IMP mercs if their face index wasn't their profile number
- Fix: missing credits git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@8582 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
+12
-4
@@ -1134,22 +1134,30 @@ BOOLEAN GetNextCreditFromTextFile()
|
||||
break;
|
||||
|
||||
case 70:
|
||||
wcscpy(zOriginalString, pCreditsJA2113[6]);
|
||||
wcscpy( zOriginalString, L"tais" );
|
||||
break;
|
||||
|
||||
// Additonal lines for free space
|
||||
case 71:
|
||||
wcscpy(zOriginalString, L"@T,B40,C208,{; ");
|
||||
wcscpy( zOriginalString, L"sevenfm" );
|
||||
break;
|
||||
|
||||
case 72:
|
||||
wcscpy(zOriginalString, pCreditsJA2113[6]);
|
||||
break;
|
||||
|
||||
// Additional lines for free space
|
||||
case 73:
|
||||
wcscpy(zOriginalString, L"@T,B40,C208,{; ");
|
||||
break;
|
||||
|
||||
case 74:
|
||||
wcscpy(zOriginalString, L"@}; ");
|
||||
break;
|
||||
|
||||
// 3.) Sir-Tech Credits
|
||||
default:
|
||||
//Get the current Credit record
|
||||
uiStartLoc = CREDITS_LINESIZE * (guiCurrentCreditRecord-(72+1));
|
||||
uiStartLoc = CREDITS_LINESIZE * (guiCurrentCreditRecord-(74+1));
|
||||
if( !LoadEncryptedDataFromFile( CRDT_NAME_OF_CREDIT_FILE, zOriginalString, uiStartLoc, CREDITS_LINESIZE ) )
|
||||
{
|
||||
//there are no more credits
|
||||
|
||||
Reference in New Issue
Block a user