1
0
Fork 0
forked from Miroirs/x49gp

prefix ui_

This commit is contained in:
Gwenhael Le Moine 2024-11-03 09:06:49 +01:00
parent c2d142281c
commit cadc26714e
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
6 changed files with 4 additions and 6 deletions

View file

@ -125,7 +125,7 @@ SRCS = ./src/x49gpng/main.c \
./src/x49gpng/timer.c \
./src/x49gpng/ui_tiny_font.c \
./src/x49gpng/ui_regular_font.c \
./src/x49gpng/symbol.c \
./src/x49gpng/ui_symbol.c \
./src/x49gpng/gdbstub.c \
./src/x49gpng/block.c \
./src/x49gpng/options.c

View file

@ -25,8 +25,6 @@
#include "bitmaps.h"
#include "ui_tiny_font.h"
#include "ui_regular_font.h"
#include "symbol.h"
#include "glyphname.h"
#include "gdbstub.h"

View file

@ -5,8 +5,8 @@
#include <cairo.h>
#include "options.h"
#include "symbol.h"
#include "glyphname.h"
#include "ui_symbol.h"
#include "ui_glyphname.h"
#include "ui_regular_font.h"
static void _regular_font_symbol_path( cairo_t* cr, double size, double xoffset, double yoffset, const x49gp_symbol_t* symbol )

View file

@ -7,7 +7,7 @@
#include <glib.h>
#include <cairo.h>
#include "symbol.h"
#include "ui_symbol.h"
static const cairo_path_data_t symbol_square_path_data[] = { SYMBOL_MOVE_TO( 0.100, 0.100 ), SYMBOL_LINE_TO( 0.500, 0.000 ),
SYMBOL_LINE_TO( 0.000, 0.500 ), SYMBOL_LINE_TO( -0.500, 0.000 ),