mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
bug fixes from Overhaul:
- Data type changes - Templates removed git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@871 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
#include "Render Z.cpp"
|
||||
///////////////////////////
|
||||
|
||||
extern INT8 gDebugStr[128];
|
||||
extern CHAR8 gDebugStr[128];
|
||||
extern BOOLEAN fLandLayerDirty = TRUE;
|
||||
|
||||
extern INT16 gsVIEWPORT_START_X;
|
||||
@@ -4052,7 +4052,7 @@ BOOLEAN ApplyScrolling( INT16 sTempRenderCenterX, INT16 sTempRenderCenterY, BOOL
|
||||
fOutBottom = TRUE;
|
||||
}
|
||||
|
||||
sprintf( (char *)gDebugStr, "Angles: %d %d %d %d", (int)at1, (int)at2, (int)at3, (int)at4 );
|
||||
sprintf( gDebugStr, "Angles: %d %d %d %d", (int)at1, (int)at2, (int)at3, (int)at4 );
|
||||
|
||||
if ( !fOutRight && !fOutLeft && !fOutTop && !fOutBottom )
|
||||
{
|
||||
@@ -4166,7 +4166,7 @@ BOOLEAN ApplyScrolling( INT16 sTempRenderCenterX, INT16 sTempRenderCenterY, BOOL
|
||||
{
|
||||
if ( !fCheckOnly )
|
||||
{
|
||||
sprintf( (char *)gDebugStr, "Center: %d %d ", (int)gsRenderCenterX, (int)gsRenderCenterY );
|
||||
sprintf( gDebugStr, "Center: %d %d ", (int)gsRenderCenterX, (int)gsRenderCenterY );
|
||||
|
||||
//Makesure it's a multiple of 5
|
||||
sMult = sTempRenderCenterX / CELL_X_SIZE;
|
||||
|
||||
Reference in New Issue
Block a user