Couple installer bugs fixed.
This commit is contained in:
parent
9a897ec8ef
commit
5bf7816f11
2 changed files with 5 additions and 1 deletions
|
@ -414,13 +414,16 @@ void jlUtilTitleSet(char *title) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int main(void) {
|
int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
int flags;
|
int flags;
|
||||||
int result;
|
int result;
|
||||||
int joysticks;
|
int joysticks;
|
||||||
int x;
|
int x;
|
||||||
|
|
||||||
|
(void)argc;
|
||||||
|
(void)argv;
|
||||||
|
|
||||||
// Start low-level tools
|
// Start low-level tools
|
||||||
if (SDL_Init(SDL_INIT_EVERYTHING) == -1) {
|
if (SDL_Init(SDL_INIT_EVERYTHING) == -1) {
|
||||||
jlUtilDie(SDL_GetError());
|
jlUtilDie(SDL_GetError());
|
||||||
|
|
|
@ -926,6 +926,7 @@ function start() {
|
||||||
# See if all the packages we need are installed
|
# See if all the packages we need are installed
|
||||||
echo ""
|
echo ""
|
||||||
tBoldBox tBLUE "Examining system..."
|
tBoldBox tBLUE "Examining system..."
|
||||||
|
doSudo dpkg --add-architecture i386
|
||||||
tCheckPackages MISSING \
|
tCheckPackages MISSING \
|
||||||
autoconf \
|
autoconf \
|
||||||
automake \
|
automake \
|
||||||
|
|
Loading…
Add table
Reference in a new issue