no message
This commit is contained in:
parent
88737d200d
commit
a850d64444
|
@ -52,6 +52,7 @@
|
||||||
<ClCompile Include="..\..\..\src\ext\file_dialog.c" />
|
<ClCompile Include="..\..\..\src\ext\file_dialog.c" />
|
||||||
<ClCompile Include="..\..\..\src\net.c" />
|
<ClCompile Include="..\..\..\src\net.c" />
|
||||||
<ClCompile Include="..\..\..\src\system.c" />
|
<ClCompile Include="..\..\..\src\system.c" />
|
||||||
|
<ClCompile Include="..\..\..\src\tools.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Image Include="icon.ico" />
|
<Image Include="icon.ico" />
|
||||||
|
|
|
@ -33,6 +33,9 @@
|
||||||
<ClCompile Include="..\..\..\src\system.c">
|
<ClCompile Include="..\..\..\src\system.c">
|
||||||
<Filter>src</Filter>
|
<Filter>src</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\src\tools.c">
|
||||||
|
<Filter>src</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Image Include="icon.ico">
|
<Image Include="icon.ico">
|
||||||
|
|
|
@ -141,8 +141,6 @@ void showTooltip(const char* text);
|
||||||
|
|
||||||
tic_key* getKeymap();
|
tic_key* getKeymap();
|
||||||
|
|
||||||
const StudioConfig* getConfig();
|
|
||||||
|
|
||||||
void setSpritePixel(tic_tile* tiles, s32 x, s32 y, u8 color);
|
void setSpritePixel(tic_tile* tiles, s32 x, s32 y, u8 color);
|
||||||
u8 getSpritePixel(tic_tile* tiles, s32 x, s32 y);
|
u8 getSpritePixel(tic_tile* tiles, s32 x, s32 y);
|
||||||
|
|
||||||
|
@ -168,4 +166,5 @@ char getKeyboardText();
|
||||||
bool keyWasPressed(tic_key key);
|
bool keyWasPressed(tic_key key);
|
||||||
bool anyKeyWasPressed();
|
bool anyKeyWasPressed();
|
||||||
|
|
||||||
|
const StudioConfig* getConfig();
|
||||||
System* getSystem();
|
System* getSystem();
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "studio.h"
|
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
|
#include "tools.h"
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <SDL.h>
|
#include <SDL.h>
|
||||||
|
|
||||||
#define STUDIO_UI_SCALE 3
|
#define STUDIO_UI_SCALE 3
|
||||||
|
|
|
@ -51,4 +51,4 @@ bool tic_tool_parse_note(const char* noteStr, s32* note, s32* octave);
|
||||||
s32 tic_tool_get_pattern_id(const tic_track* track, s32 frame, s32 channel);
|
s32 tic_tool_get_pattern_id(const tic_track* track, s32 frame, s32 channel);
|
||||||
void tic_tool_set_pattern_id(tic_track* track, s32 frame, s32 channel, s32 id);
|
void tic_tool_set_pattern_id(tic_track* track, s32 frame, s32 channel, s32 id);
|
||||||
u32 tic_tool_find_closest_color(const tic_rgb* palette, const tic_rgb* color);
|
u32 tic_tool_find_closest_color(const tic_rgb* palette, const tic_rgb* color);
|
||||||
TIC80_API u32* tic_palette_blit(const tic_palette* src);
|
u32* tic_palette_blit(const tic_palette* src);
|
||||||
|
|
Loading…
Reference in New Issue