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 result;
|
||||
int joysticks;
|
||||
int x;
|
||||
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
||||
// Start low-level tools
|
||||
if (SDL_Init(SDL_INIT_EVERYTHING) == -1) {
|
||||
jlUtilDie(SDL_GetError());
|
||||
|
|
|
@ -926,6 +926,7 @@ function start() {
|
|||
# See if all the packages we need are installed
|
||||
echo ""
|
||||
tBoldBox tBLUE "Examining system..."
|
||||
doSudo dpkg --add-architecture i386
|
||||
tCheckPackages MISSING \
|
||||
autoconf \
|
||||
automake \
|
||||
|
|
Loading…
Add table
Reference in a new issue