14 lines
388 B
Nim
14 lines
388 B
Nim
# Nexus Membrane: Console Font Dispatcher
|
|
|
|
when defined(TERM_PROFILE_minimal):
|
|
import fonts/minimal as profile
|
|
elif defined(TERM_PROFILE_standard):
|
|
import fonts/standard as profile
|
|
else:
|
|
# Fallback to minimal if not specified
|
|
import fonts/minimal as profile
|
|
|
|
const FONT_WIDTH* = profile.FONT_WIDTH
|
|
const FONT_HEIGHT* = profile.FONT_HEIGHT
|
|
const FONT_BITMAP* = profile.FONT_BITMAP
|