Fix (weird) wording

This commit is contained in:
JeremyStar™ 2024-07-23 20:43:08 +02:00
parent d49d54df3a
commit 2d8e896333
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -140,7 +140,7 @@ public final class GraphicsSubsystem implements SubsystemMainClass {
precomputeEventListeners();
// Warn about subsystem and API instability
logger.warn("The graphics subsystem is experimental. Subsystem, API and Graphics API compatibility is not guaranteed.");
logger.warn("The graphics subsystem is experimental. Subsystem and API stability is not guaranteed.");
}
/**
@ -212,17 +212,15 @@ public final class GraphicsSubsystem implements SubsystemMainClass {
// Check if registered apis are compatible
for (String apiName : registeredApis.keySet())
if (registeredApis.get(apiName).isCompatible()) {
logger.diag(apiName + " is compatible with the system");
logger.diag(apiName + " is compatible with this system");
compatibleApis.add(apiName);
} else
logger.diag(apiName + " is incompatible with the system");
logger.diag(apiName + " is incompatible with this system");
logger.diag("Compatible are " + ListFormatter.formatList(compatibleApis));
logger.diag("Compatible is/are " + ListFormatter.formatList(compatibleApis));
// Choose last item in list.
if (!compatibleApis.isEmpty()) {
logger.verb("Chose Graphics API " + compatibleApis.getLast());
api = registeredApis.get(compatibleApis.getLast());
try {
logger.diag("Initializing Graphics API");