Cube  Check-in [b8dd9a3d27]

Overview
Comment:commands.mm: Remove stray break

This was from when a switch was used before.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b8dd9a3d27d633529b03d05d9575111d8483524549f9f021e9a9e1ff50c2c1a2
User & Date: js on 2025-03-09 00:27:20
Other Links: manifest | tags
Context
2025-03-09
00:39
Clean up user data vs. game data check-in: d751d8b0b7 user: js tags: trunk
00:27
commands.mm: Remove stray break check-in: b8dd9a3d27 user: js tags: trunk
2025-03-08
23:52
worldio.mm: Fix wrong format specifiers check-in: 369bbd2b80 user: js tags: trunk
Changes

Modified src/commands.mm from [bdc0c01493] to [0afcae2b92].

275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
						OFString *t = [OFString
						    stringWithFormat:@"arg%d",
						    i];
						alias(t, w[i]);
					}
					val = execute(
					    [identifier action], isDown);
					break;
				}
			}
		}

		return val;
	}
}







<







275
276
277
278
279
280
281

282
283
284
285
286
287
288
						OFString *t = [OFString
						    stringWithFormat:@"arg%d",
						    i];
						alias(t, w[i]);
					}
					val = execute(
					    [identifier action], isDown);

				}
			}
		}

		return val;
	}
}