mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 08:00:55 +02:00
Fixed templatetypeclass land_type. Template's can be placed but only the first tile seems to work.
This commit is contained in:
@@ -1003,7 +1003,7 @@ void DisplayClass::Cursor_Mark(CELL pos, bool on)
|
||||
CELL cell = pos + *ptr++;
|
||||
if (In_Radar(cell)) {
|
||||
cellptr = &(*this)[cell];
|
||||
cellptr->Redraw_Objects();
|
||||
cellptr->Redraw_Objects(true); // jmarshall: Force redraw all cursor tiles.
|
||||
if (on) {
|
||||
cellptr->IsCursorHere = true;
|
||||
} else {
|
||||
@@ -1022,7 +1022,7 @@ void DisplayClass::Cursor_Mark(CELL pos, bool on)
|
||||
CELL cell = pos + *ptr++;
|
||||
if (In_Radar(cell)) {
|
||||
cellptr = &(*this)[cell];
|
||||
cellptr->Redraw_Objects();
|
||||
cellptr->Redraw_Objects(true); // jmarshall: Force redraw all cursor tiles.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user