diff options
-rw-r--r-- | lib/system/platforms.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/system/platforms.nim b/lib/system/platforms.nim index 59a1333f1..50b818956 100644 --- a/lib/system/platforms.nim +++ b/lib/system/platforms.nim @@ -40,7 +40,7 @@ type OsPlatform* {.pure.} = enum ## the OS this program will run on. none, dos, windows, os2, linux, morphos, skyos, solaris, irix, netbsd, freebsd, openbsd, aix, palmos, qnx, amiga, - atari, netware, macos, macosx, haiku, android, js, nimVM, + atari, netware, macos, macosx, haiku, android, js, standalone, nintendoswitch const @@ -66,7 +66,6 @@ const elif defined(haiku): OsPlatform.haiku elif defined(android): OsPlatform.android elif defined(js): OsPlatform.js - elif defined(nimVM): OsPlatform.nimVM elif defined(standalone): OsPlatform.standalone elif defined(nintendoswitch): OsPlatform.nintendoswitch else: OsPlatform.none |