MCPcopy Create free account
hub / github.com/TASEmulators/fceux / PutInSpaces

Function PutInSpaces

src/drivers/win/memwatch.cpp:397–409  ·  view source on GitHub ↗

replaces dummy characters with spaces

Source from the content-addressed store, hash-verified

395
396//replaces dummy characters with spaces
397static void PutInSpaces(int i)
398{
399 int j;
400 for(j=0;j<ADDRESSLENGTH;j++)
401 {
402 if(addresses[i][j] == '|') addresses[i][j] = ' ';
403 if(labels[i][j] == '|') labels[i][j] = ' ';
404 }
405 for(;j<LABELLENGTH;j++)
406 {
407 if(labels[i][j] == '|') labels[i][j] = ' ';
408 }
409}
410
411//Decides if any edit box has anything
412bool iftextchanged()

Callers 4

SaveMemWatchFunction · 0.85
QuickSaveMemWatchFunction · 0.85
LoadMemWatchFunction · 0.85
OpenMemwatchRecentFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected