mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-26 05:24:21 +01:00
Add sound structures, fix build of menu.h
This commit is contained in:
parent
6b27bcbb86
commit
e83e24f785
@ -101,6 +101,20 @@ struct NetworkUpdatePingAck
|
||||
uint32 seq;
|
||||
};
|
||||
|
||||
struct NetworkUpdateSoundInfo
|
||||
{
|
||||
uint8 adr;
|
||||
uint8 val;
|
||||
uint8 delay_cycles;
|
||||
};
|
||||
|
||||
struct NetworkUpdateSound
|
||||
{
|
||||
uint16 n_items;
|
||||
uint16 flags;
|
||||
NetworkUpdateSoundInfo info[];
|
||||
};
|
||||
|
||||
/*
|
||||
* Sent by the third-party broker server when someone wants to connect
|
||||
* to this machine.
|
||||
|
@ -15,6 +15,8 @@
|
||||
#include <SDL.h>
|
||||
#include <SDL_ttf.h>
|
||||
#include <stdint.h>
|
||||
#include "sysdeps.h"
|
||||
#include "Network.h"
|
||||
|
||||
#define KEY_UP 1
|
||||
#define KEY_DOWN 2
|
||||
|
Loading…
Reference in New Issue
Block a user