diff --git a/plugins/remotefortressreader/remotefortressreader.cpp b/plugins/remotefortressreader/remotefortressreader.cpp index 412d7894f..32bd73dad 100644 --- a/plugins/remotefortressreader/remotefortressreader.cpp +++ b/plugins/remotefortressreader/remotefortressreader.cpp @@ -194,7 +194,7 @@ command_result loadArtImageChunk(color_ostream &out, vector & parameter { int index = atoi(parameters[0].c_str()); auto chunk = GetArtImageChunk(&(world->art_image_chunks), index); - out.print("Loaded chunk id: &d", chunk->id); + out.print("Loaded chunk id: %d\n", chunk->id); } return CR_OK; } @@ -260,7 +260,7 @@ DFhackCExport command_result plugin_init(color_ostream &out, std::vector