forked from len0rd/rockbox
we no longer have lang.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2484 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
67f95ecb28
commit
2ec768a206
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,6 @@
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "font.h"
|
#include "font.h"
|
||||||
#include "icons.h"
|
#include "icons.h"
|
||||||
#include "lang.h"
|
|
||||||
#include "peakmeter.h"
|
#include "peakmeter.h"
|
||||||
|
|
||||||
/* buffer the read peak value */
|
/* buffer the read peak value */
|
||||||
|
@ -55,7 +54,9 @@ static int peak_meter_src_r = MAS_REG_DQPEAK_R;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* temporarily en- / disables peak meter. This is
|
/* temporarily en- / disables peak meter. This is
|
||||||
|
|
||||||
especially for external applications to detect
|
especially for external applications to detect
|
||||||
|
|
||||||
if the peak_meter is in use and needs drawing at all */
|
if the peak_meter is in use and needs drawing at all */
|
||||||
bool peak_meter_enabled = true;
|
bool peak_meter_enabled = true;
|
||||||
|
|
||||||
|
@ -211,6 +212,7 @@ void peak_meter_draw(int x, int y, int width, int height) {
|
||||||
/* read the volume info from MAS */
|
/* read the volume info from MAS */
|
||||||
left = peak_meter_read_l();
|
left = peak_meter_read_l();
|
||||||
right = peak_meter_read_r();
|
right = peak_meter_read_r();
|
||||||
|
|
||||||
peak_meter_peek();
|
peak_meter_peek();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,6 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
#include "sprintf.h"
|
#include "sprintf.h"
|
||||||
#include "lang.h"
|
|
||||||
#define TETRIS_TITLE "Tetris!"
|
#define TETRIS_TITLE "Tetris!"
|
||||||
#define TETRIS_TITLE_FONT 1
|
#define TETRIS_TITLE_FONT 1
|
||||||
#define TETRIS_TITLE_XLOC 43
|
#define TETRIS_TITLE_XLOC 43
|
||||||
|
|
|
@ -33,7 +33,6 @@
|
||||||
#include "kernel.h"
|
#include "kernel.h"
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
#include "rtc.h"
|
#include "rtc.h"
|
||||||
#include "lang.h"
|
|
||||||
#include "screens.h"
|
#include "screens.h"
|
||||||
|
|
||||||
/* size of the field the worm lives in */
|
/* size of the field the worm lives in */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue