https://github.com/jrincayc/ucblogo-code
Revision a4e502d69f0cd3b47ee13c61a0a2138c178d51dd authored by Dan Malec on 31 December 2021, 17:38:20 UTC, committed by GitHub on 31 December 2021, 17:38:20 UTC
* STANDOUT fix: switching from inverting raw colors to inverting foreground/background colors
1 parent 0ba6ad1
Raw File
Tip revision: a4e502d69f0cd3b47ee13c61a0a2138c178d51dd authored by Dan Malec on 31 December 2021, 17:38:20 UTC
Fix/standardize STANDOUT in wxWidgets builds (#122)
Tip revision: a4e502d
nographics.c

/* A dummy graphics implementation for Unix */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef X_DISPLAY_MISSING

int pw, ph, pc, pm, pv, px, py, bg;

#ifndef HAVE_WX
char *LogoPlatformName="Unix-Nographics";

void nop()
{
}
#endif
#endif
back to top