~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/init.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2006-07-30 19:15:59 UTC
  • mto: (9.1.1 lenny) (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20060730191559-g31ymd2mk102kzff
Tags: upstream-1.19
ImportĀ upstreamĀ versionĀ 1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
#include "machine-bus.h"
49
49
#include "machine.h"
50
50
#include "maincpu.h"
 
51
#include "network.h"
51
52
#include "palette.h"
52
53
#include "ram.h"
53
54
#include "resources.h"
128
129
        init_resource_fail("GFXOUTPUT");
129
130
        return -1;
130
131
    }
 
132
    if (network_resources_init() < 0) {
 
133
        init_resource_fail("network");
 
134
        return -1;
 
135
    }
 
136
 
131
137
    return 0;
132
138
}
133
139